diff options
| author | JaKooLit <jimmielovejay.com> | 2023-12-16 11:59:19 +0900 |
|---|---|---|
| committer | JaKooLit <jimmielovejay.com> | 2023-12-16 11:59:19 +0900 |
| commit | aa9a6ebfbb2f99f1301a1276dae3ea119a338ee9 (patch) | |
| tree | ad01741356dabd4b386619eaf5e3ae3fef0634f8 /config/waybar/style/[Retro] Simple Style.css | |
| parent | f3cdea54863ca67e2533d2f5dc88be3eecf568b8 (diff) | |
Major Rename of waybar configs and styles for easier user to understand
Kitty - pywal color change disabled by default
Execs.conf re-organized
Auto wallpaper changed disabled by default
Diffstat (limited to 'config/waybar/style/[Retro] Simple Style.css')
| -rw-r--r-- | config/waybar/style/[Retro] Simple Style.css | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/config/waybar/style/[Retro] Simple Style.css b/config/waybar/style/[Retro] Simple Style.css new file mode 100644 index 00000000..0d6a36fe --- /dev/null +++ b/config/waybar/style/[Retro] Simple Style.css @@ -0,0 +1,159 @@ +/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ +/* Simple Style */ + + +@define-color background #1d2021; +@define-color foreground #ebdbb2; +@define-color dim #928374; +@define-color yellow #fabd2f; +@define-color red #fb4934; +@define-color green #b8bb26; + +* { + background: @background; + border: none; + border-radius: 0; + font-family: "JetBrainsMono Nerd Font"; + font-size: 97%; +} + +window#waybar { + background: @background; + color: @foreground; + transition-property: background-color; + transition-duration: 0.5s; +} + +#workspaces button { + padding: 0 10px; + color: @foreground; +} + +#workspaces button.active { + border-bottom: 1px solid @green; +} + +#workspaces button.urgent { + border-bottom: 2px solid @yellow; +} + +#submap { + border-bottom: 1px solid @red; +} + +#backlight, +#backlight-slider, +#battery, +#bluetooth, +#cava, +#clock, +#cpu, +#disk, +#idle_inhibitor, +#keyboard-state, +#memory, +#mode, +#mpris, +#network, +#pulseaudio, +#pulseaudio-slider, +#taskbar button, +#taskbar, +#temperature, +#tray, +#window, +#wireplumber, +#workspaces, +#custom-backlight, +#custom-cycle_wall, +#custom-keybinds, +#custom-keyboard, +#custom-light_dark, +#custom-lock, +#custom-menu, +#custom-power_vertical, +#custom-power, +#custom-speaker, +#custom-updater, +#custom-weather, +#custom-weather.clearNight, +#custom-weather.cloudyFoggyDay, +#custom-weather.cloudyFoggyNight, +#custom-weather.default, +#custom-weather.rainyDay, +#custom-weather.rainyNight, +#custom-weather.severe, +#custom-weather.showyIcyDay, +#custom-weather.snowyIcyNight, +#custom-weather.sunnyDay { + color: @foreground; + padding-top: 3px; + padding-bottom: 3px; + padding-right: 6px; + padding-left: 6px; +} + +#battery.warning, +#disk.warning, +#memory.warning, +#cpu.warning { + border-top: 3px solid @background; + border-bottom: 3px solid @yellow; +} + +#battery.critical, +#disk.critical, +#memory.critical, +#cpu.critical { + border-top: 3px solid @background; + border-bottom: 3px solid @red; +} + +#battery.charging { + border-top: 3px solid @background; + border-bottom: 3px solid @green; +} + +#pulseaudio-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#pulseaudio-slider trough { + min-width: 80px; + min-height: 5px; + border-radius: 5px; + background-color: @dim; +} + +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; + background-color: @green; +} + +#backlight-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#backlight-slider trough { + min-width: 80px; + min-height: 10px; + border-radius: 5px; + background-color: @dim; +} + +#backlight-slider highlight { + min-width: 10px; + border-radius: 5px; + background-color: @green; +} |
